KeyBindingVerifier

sealed interface KeyBindingVerifier<out JWT>(source)

This represents the two kinds of Key Binding verification

MustNotBePresent : A presentation SD-JWT must not have a Key Binding mustBePresent: A presentation SD-JWT must have a valid Key Binding

Inheritors

Types

Link copied to clipboard
object Companion
Link copied to clipboard
class MustBePresentAndValid<out JWT>(val keyBindingVerifierProvider: (JsonObject) -> JwtSignatureVerifier<JWT>?) : KeyBindingVerifier<JWT>

Indicates that a presentation SD-JWT must have key binding

Link copied to clipboard

Indicates that a presentation SD-JWT must not have key binding

Functions

Link copied to clipboard